Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | /* Irrlicht Library Wrapper Created by: Nathan Adams Denzel Morris Copyright (C) 2007 This software is licensed under the GNU/GPL. This software may not be used for commerical purposes. */ #include <iostream> #include <irrlicht.h> #include <strings.h> #include "IrrLib.h" //Libraries we create go here //#include "IrrSphere.h" #include "IrrColor.h" #include "IrrSprite.h" //#include "Irr2D.h" using namespace irr; using namespace core; using namespace scene; using namespace video; using namespace io; using namespace gui; using namespace std; IrrSprite::IrrSprite() { //do stuff } IrrSprite::~IrrSprite() { //delete stuff } void IrrSprite::SetDriver(irr::video::IVideoDriver* driver) { this ->driver = driver; } void IrrSprite::SetSmgr(irr::scene::ISceneManager* smgr) { this ->smgr = smgr; } |
Source at commit ca2aafbed07a created 11 years 4 months ago. By Nathan Adams, Migrating from google code |
---|